error

public static void error(String message)

Logs an ERROR message.

Parameters

message

the message to log


public static void error(String message, Array<Object> arguments)

Logs an ERROR message with the given arguments.

Parameters

message

the message to log

arguments

the array of arguments to the message


public static void error(String message, Throwable exception)

Logs an ERROR message with the given exception.

Parameters

message

the message to log

exception

the Throwable associated with the log message


public static void error(String message, Throwable exception, Supplier<String> parameterSupplier)

Logs an ERROR message with the given exception and a lazy calculated parameter.

Parameters

message

the message to log

exception

the Throwable associated with the log message

parameterSupplier

a function, which when called, produces the desired log message parameter


public static void error(String message, Throwable exception, Array<Object> arguments)

Logs an ERROR message with the given exception and arguments.

Parameters

message

the message to log

exception

the Throwable associated with the log message

arguments

the array of arguments to the message